home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic 5 Developer's Kit / vb5 dev kit.iso / dev / lwed2 / readme.txt < prev   
Encoding:
Text File  |  1996-06-23  |  2.6 KB  |  74 lines

  1. LWed - Windows INI file editor.
  2.  
  3. version 2.0 of 1996-06-22, Copyright (C) Laszlo Radanyi
  4.  
  5. This program is distributed in the hope that it will be useful.
  6. but WITHOUT ANY WARRANTY; without even the implied warranty of
  7. MERCHANTIBILITY or FITNESS FOR A PARTICULAR PURPOSE.
  8.  
  9. A B O U T   T H E   P R O G R A M   :
  10.  
  11. This small utility makes it easier to customize Windows INI files.
  12. I needed  a utility  like this to be able to change  the Wallpaper
  13. entry  BEFORE  I  had  windows  running. Of course,  this  program
  14. came very handy for all kinds of entry replacement.
  15.  
  16. This version replaces the previously distributed version. A few
  17. changes have been made:
  18.  
  19. o  The program is shareware. Why ?
  20.    I noticed that the interest for it became higher, and I wanted
  21.    to get payed for the support.
  22.    Also, the program uses more generalised code, which has taken
  23.    a while to develop - so I want to get something in return.
  24.  
  25. o  Source is NOT free anymore. This is because of the underlying
  26.    software which I do not wish to give away.
  27.  
  28. o  Better function. Hopefully. :-)
  29.  
  30. o  LWED does not use the DOS redirectors any more. This is mainly
  31.    because of the underlying library, which handles file i/o.
  32.    Also, I noticed that ALL users used a file name on the command
  33.    line anyway, so making this the standard function was self given.
  34.  
  35. Enjoy ! And should you have any comments, please don't hesitate
  36. to reach the author at lrd@plea.se
  37.  
  38. Now a little old text:
  39.  
  40. LWed has four MODES - read, write, insert and append.
  41.  
  42. READ   will print the contents of an INI key onto the std stream.
  43. WRITE  will replace the key value with the given new value
  44. APPEND will append a string to the key value
  45. INSERT will append the current key value to the given string and
  46.             write the new combined string to the value
  47.  
  48. WRITE mode is the mode I use the most. This is how to use it:
  49. Suppose we want to replace the current Wallpaper= setting
  50. under [Desktop] in win.ini. (This was the original "problem" I wanted
  51. to solve.) Suppose 'lwed' is in the current directory or in any directory
  52. in PATH, AND suppose the wallpaper file we want to use is called
  53. mypaper.bmp - we enter
  54.  
  55. > lwed -w win.ini Desktop Wallpaper mypaper.bmp
  56.  
  57. I use the program in several batch files, where I change a few settings
  58. for each family member.
  59.  
  60. Syntax for the other modes:
  61.  
  62. lwed -h
  63. lwed -v
  64. lwed -i foo.ini    MySection MyKey       MyValueToInsert
  65. lwed -p foo.ini    MySection MyKey       MyValueToPrepend
  66. lwed -a system.ini boot      network.drv "*mynetwork"
  67. lwed -r win.ini    windows   load
  68. lwed -w win.ini    windows   run
  69.  
  70. ---
  71.  
  72.  
  73.  
  74.